Fix the truncation code so that it always accepts an exact match,
even when one command is a prefix of another one. This fixes,
e.g., "xl list"
Signed-off-by: Tim Deegan <Tim.Deegan@citrix.com>
{
struct cmd_spec *cmd = NULL;
size_t len;
- int i;
+ int i, count = 0;
if (!s)
return NULL;
len = strlen(s);
for (i = 0; i < cmdtable_len; i++) {
if (!strncmp(s, cmd_table[i].cmd_name, len)) {
- if (cmd == NULL)
- cmd = &cmd_table[i];
- else
- return NULL;
+ cmd = &cmd_table[i];
+ /* Take an exact match, even if it also prefixes another command */
+ if (len == strlen(cmd->cmd_name))
+ return cmd;
+ count++;
}
}
- return cmd;
+ return (count == 1) ? cmd : NULL;
}